home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / Tools / freeWAIS-sf-1.1 / ir / soundex.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-21  |  224 b   |  13 lines

  1. #ifndef __SOUNDEX_H__
  2. #define __SOUNDEX_H__
  3.  
  4. #ifdef __GNUC__
  5. void Soundex (char *Name, char *Key);
  6. void Phonix (char *Name, char *Key);
  7. #else
  8. extern void Soundex ();
  9. extern void Phonix ();
  10. #endif
  11.  
  12. #endif /* __SOUNDEX_H__ */
  13.